From: Chong Yidong Date: Sat, 23 Jan 2010 22:46:32 +0000 (-0500) Subject: * emacs-lisp/assoc.el (aelement): Doc fix. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~324^2~8664^2~12 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=4c87d1a4e8cd68cd49ab186534f384d7336c8a13;p=emacs.git * emacs-lisp/assoc.el (aelement): Doc fix. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 1dbe0490003..075f1cb1708 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,6 +1,7 @@ 2010-01-23 Chong Yidong * emacs-lisp/assoc.el (aput, adelete, amake): Use lexical-let (Bug#5450). + (aelement): Doc fix. 2010-01-23 Stephen Leake diff --git a/lisp/emacs-lisp/assoc.el b/lisp/emacs-lisp/assoc.el index dd437d7cb1d..60692495776 100644 --- a/lisp/emacs-lisp/assoc.el +++ b/lisp/emacs-lisp/assoc.el @@ -42,7 +42,8 @@ sorted list." (defun aelement (key value) "Make a list of a cons cell containing car of KEY and cdr of VALUE. -The returned list is suitable as an element of an alist." +The returned list is suitable for concatanating with an existing +alist, via `nconc'." (list (cons key value)))